* {
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 80% 1fr;
    grid-template-rows: auto;
    background-color: #080808;
}


/* Fonts */

h1 {
    color: #19736A;
    font-size: 5vh;
    font-family: montserrat, sans-serif;
    font-weight: 100;
    font-style: normal;
    padding: 2vh 0;
    letter-spacing: 0.05em;
    margin: 8vw 0 2vh 0;
}

h2 {
    color: #F29441;
    font-family: montserrat, sans-serif;
    font-weight: 100;
    font-style: normal;
    text-align: end;
    letter-spacing: 0.05em;
    margin: 4vh 0;
}

h3 {
    color: #26A68E;
    font-family: delaney, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 4vh;
    margin: 0 0 0 2vw;
    letter-spacing: 0.01em;
    opacity: 0.8;
}

h4 {
    color: #26A68E;
    font-family: montserrat, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vh;
    margin: 1vw 0 0 2vw;
    text-align: end;
}

h5 {
    color: white;
    font-family: "Lato", sans-serif;
    font-size: 1vh;
}

h6 {
    color: white;
    font-family: "Lato", sans-serif;
    font-size: 18px;
}

p {
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vh;
    opacity: 0.8;
}

a {
    font-family: "Lato", sans-serif;
    text-decoration: none;
    color: #F29441;
}

a:hover {
    font-family: "Lato", sans-serif;
    color: #F07135;
    text-decoration: none;
}


/* Body */

.full-width {
    grid-column: 1/4;
    margin: 0 auto;
    margin-bottom: 1vw;
}

.content-width {
    grid-column: 2/3;
    grid-row: auto;
    margin-bottom: 1vw;
}


/* Navigation */

header {
    width: 100vw;
    background-color: #080808;
    justify-content: space-around;
    grid-template-columns: 1fr 80% 1fr;
    grid-template-rows: auto;
}

#nav-logo {
    width: 5vw;
}

nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1vw;
    padding: 2vw 0;
    background-color: #080808;
    position: fixed;
    width: 100vw;
    z-index: 3;
}

li {
    width: 40%;
    text-align: center;
    align-self: center;
}

nav li a {
    font-family: acumin-pro, sans-serif;
    text-align: center;
    color: #19736A;
    font-weight: 500;
    font-style: normal;
    font-size: 16pt;
    padding: 2vw;
    margin: 0 4px 0 4px;
}

nav li a:hover {
    color: #26A68E;
    font-family: acumin-pro, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18pt;
}


/**Banner**/

.top_banner {
    display: grid;
    grid-template-columns: 1fr 20% 1fr 60% 1fr;
    grid-template-rows: auto;
    margin: 6vw 0 6vw 0;
}

.banner {
    grid-column: 1/4;
    grid-row: 1/3;
    height: 20vw;
    width: 100vw;
    object-fit: cover;
}

.cutout {
    grid-column: 2/3;
    grid-row: 2/3;
    height: 20vw;
    margin-left: 0;
}

.top_banner h2 {
    font-size: 3vh;
    grid-column: 4/5;
    grid-row: 2/3;
    background-color: black;
    padding: 2vw;
    display: inline-block;
    text-align: end;
}

.text_banner {
    grid-column: 4/5;
    grid-row: 2/3;
}

.text_banner h4 {
    grid-column: 4/5;
    grid-row: 2/3;
    background-color: black;
    padding: 2vw;
    display: inline-block;
}


/*Startseite*/

section {
    margin: 2vh 0;
}

.avatar {
    border-radius: 50%;
    width: 20vw;
}

.icon {
    width: 3vw;
    height: auto;
}

.flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}


/*Galerie */

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 8vw;
}

.img-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
}

.gallery img {
    width: 20vw;
    height: 20vw;
    object-fit: contain;
}

.img-wrapper {
    display: inline-block;
    overflow: hidden;
    border: 0px solid white;
}

.small_img:hover {
    transform: scale(1.2);
}

.overlay_open {
    position: fixed;
    z-index: 4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
}

#gallery_close {
    color: whitesmoke;
    opacity: 0.3;
    position: fixed;
    top: 1vh;
    right: 2vh;
    font-size: 35pt;
}

#gallery_close:hover {
    color: white;
    opacity: 0.6;
}

.small_img {
    width: 26vw;
    height: 26vw;
    object-fit: cover;
    transition: all .35s ease;
    vertical-align: middle;
}

.big_img {
    width: 60vw;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    z-index: 10;
    display: none;
    transform: none;
    display: block;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.object-top {
    object-position: 100% 10%;
}


/**Images in general**/

.img-big {
    width: 40%;
}

section {
    margin-bottom: 2vh;
    padding-bottom: 2vh;
}

.intro {
    width: 60vw;
    padding: 4vh 0;
    margin-top: 4vw;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    width: 20vw;
    margin: 4vw 0;
    background-color: #191919;
    filter: drop-shadow(10px 10px 10px #000)
}

.card-date {
    font-size: 16pt;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    letter-spacing: 0.05;
    color: white;
    opacity: 0.75;
    text-align: end;
    padding: 0 1vw;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 20% 80%;
    opacity: 0.8;
}

.card-img:hover {
    opacity: 1;
}

.card-title {
    font-size: 24pt;
    font-family: "Lato", sans-serif;
    font-weight: 100;
    letter-spacing: 0.05;
    text-transform: uppercase;
    text-align: start;
    color: white;
    opacity: 0.9;
    padding: 0 1vw;
}

.card-p {
    font-size: 16pt;
    font-family: "Lato", sans-serif;
    font-weight: 100;
    letter-spacing: 0.05;
    color: white;
    opacity: 0.75;
    padding: 0 1vw;
}

.card-button {
    text-align: end;
    padding: 0 1vw;
    margin-bottom: 1vw;
}

.card-button a {
    font-size: 18pt;
    font-family: "Lato", sans-serif;
    font-weight: 100;
    letter-spacing: 0.05;
    color: #F29441;
    padding: 0 1vw;
}

.tinycard-button {
    border: solid #F29441 1px;
    padding: 10px;
    margin: 2px;
    width: fit-content;
}

.tinycard-button:hover {
    border: solid #26A68E 1px;
    padding: 10px;
}

.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-banner_wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-banner_wrapper iframe,
.video-banner_wrapper object,
.video-banner_wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
}

.bottom-bar {
    display: none;
}

.split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.split p {
    width: 30vw;
    margin: 7px;
}

.split h4 {
    text-align: start;
    margin: 0;
}

.center {
    justify-content: center;
    align-self: center;
}

.blog-img {
    width: 38vw;
    height: auto;
    vertical-align: top;
    padding: 1vw 0;
}

footer {
    width: 100%;
    background-color: black;
    padding: 2vw;
    margin-top: 2vw;
}

footer p {
    opacity: 0.8;
}

@media only screen and (max-width: 1350px) {
    .card {
        width: 35vw;
        margin: 4vw 2vw 4vw 2vw;
    }
    .split {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: center;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        color: #F29441;
        background-color: black;
    }
    .mobile-nav li {
        padding: 2vh 0;
    }
    .mobile-nav li a {
        font-size: 35px;
    }
    #burger {
        position: fixed;
        color: white;
        z-index: 10;
        bottom: 30pt;
        right: 35pt;
        font-size: 30pt;
        display: block;
    }
    #burger-close {
        position: fixed;
        color: white;
        z-index: 10;
        bottom: 30pt;
        right: 35pt;
        font-size: 30pt;
        display: none;
    }
    nav {
        display: none;
    }
    .mobile-nav li {
        padding: 2vh 0;
    }
    .mobile-nav li a {
        font-size: 35px;
    }
    #nav-logo {
        width: 8vh;
        margin-top: 2vh;
        margin-left: 2vh;
        z-index: 10;
    }
    .intro {
        padding: 1vh 0;
    }
    .bottom-bar {
        display: block;
        background-color: #0a2327;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        position: fixed;
        bottom: 10px;
        right: 10px;
    }
    .icon a img {
        width: 20vw !important;
    }
    .small_img {
        width: 38vw;
        height: 38vw;
        display: flex;
        flex-wrap: wrap;
    }
    .big_img {
        width: 100vw;
        max-height: 100vh;
    }
    .tinycard-button {
        display: flex;
        flex-direction: column;
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 18px;
    }
    header {
        height: 100px;
        margin: 2vw;
    }
}

@media only screen and (max-width: 600px) {
    .small_img {
        width: 80vw;
        height: 80vw;
        object-fit: cover;
        transition: all .35s ease;
        vertical-align: middle;
        margin-bottom: 6vw;
    }
    .big_img {
        width: 100vw;
        max-height: 100vh;
    }
    .icon img {
        width: 30%;
    }
    body {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    .banner {
        width: 100vw;
    }
    h1 {
        font-size: 22pt;
        padding-top: 2vw;
        margin: 8vw 0;
    }
    h2 {
        font-size: 18pt;
    }
    h3 {
        font-size: 16pt;
    }
    p {
        font-size: 12pt;
    }
    .card {
        width: 80vw;
        margin: 4vw 2vw 4vw 2vw;
    }
    .blog-img {
        width: 80vw !important;
        margin: 0 auto;
        padding: 1vw 0;
    }
    .full-width {
        display: block;
        width: 100vw;
    }
    .content-width {
        margin: 0 auto;
        width: 90vw;
    }
    .split {
        display: block;
    }
    .split p {
        width: 80vw !important;
        margin: 0 auto !important;
        padding-bottom: 2vw;
    }
    .flex {
        display: block;
        margin: 0 auto;
        width: 90vw;
        justify-content: space-between;
    }
    .flex img {
        width: 90vw;
    }
    .flex a img {
        width: 30vw;
    }
    .avatar {
        margin: 0 auto;
        width: 90vw;
        padding-bottom: 2vw;
        justify-content: center;
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: center;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        color: #F29441;
        background-color: black;
    }
    .mobile-nav li {
        padding: 2vh 0;
    }
    .mobile-nav li a {
        font-size: 26px;
    }
    #burger {
        position: fixed;
        color: white;
        z-index: 10;
        bottom: 30pt;
        right: 35pt;
        font-size: 30pt;
        display: block;
    }
    #burger-close {
        position: fixed;
        color: white;
        z-index: 10;
        bottom: 30pt;
        right: 35pt;
        font-size: 30pt;
        display: none;
    }
    nav {
        display: none;
    }
    nav .content-width {
        display: none;
    }
    #nav-logo {
        width: 8vh;
        margin-top: 2vh;
        margin-left: 2vh;
        z-index: 10;
    }
    .intro {
        padding: 8vh 0;
    }
    .bottom-bar {
        display: block;
        background-color: #0a2327;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        position: fixed;
        bottom: 10px;
        right: 10px;
    }
    li {
        width: 100%;
    }
}